home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / graphics / gnuplot / gnuplot-3.7.1bin / build / smakefile.gd < prev    next >
Text File  |  1999-11-29  |  1KB  |  43 lines

  1. #Depending on your system, you will need to modify this makefile.
  2.  
  3. #If you do not have gcc, change the setting for CC, but you must
  4. #use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc
  5. #compiler; get gcc if you are still using it). 
  6.  
  7. #If the ar command fails on your system, consult the ar manpage
  8. #for your system. 
  9.  
  10. CC = sc
  11. SCOPTIONS = OPTSCHED OPTINL OPTALIAS OPTTIME OPTINLOCAL STRMERGE \
  12.             NOICON NOSTACKCHECK UTILLIB NOVERSION
  13.  
  14. CFLAGS = OPT DATA=far
  15. AR = oml
  16. LIBS = LIB gd.lib
  17.  
  18. all: SCOPTIONS gd.lib gddemo giftogd webgif
  19.  
  20. gddemo: gddemo.o gd.lib gd.h gdfonts.h gdfontl.h
  21.     $(CC) $(CFLAGS) LINK TO gddemo gddemo.o $(LIBS)
  22.  
  23. giftogd: giftogd.o gd.lib gd.h
  24.     $(CC) $(CFLAGS) LINK TO giftogd giftogd.o $(LIBS) 
  25.  
  26. gd.lib: gd.o gdfontt.o gdfonts.o gdfontmb.o gdfontl.o gdfontg.o \
  27.     gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h gdfontg.h
  28.     @-delete force quiet gd.lib
  29.     $(AR) gd.lib r gd.o gdfontt.o gdfonts.o gdfontmb.o \
  30.         gdfontl.o gdfontg.o
  31.  
  32. webgif: webgif.o gd.lib gd.h
  33.     $(CC) $(CFLAGS) LINK TO webgif webgif.o $(LIBS)
  34.  
  35. clean:
  36.     @-delete force quiet *.o *.lib gddemo giftogd *.lnk SCOPTIONS
  37.  
  38. SCOPTIONS: smakefile
  39.     copy to $@ <from <
  40. $(SCOPTIONS)
  41. <
  42.  
  43.